home *** CD-ROM | disk | FTP | other *** search
Text File | 1989-04-24 | 1015 b | 46 lines | [TEXT/PJMM] |
- {}
- {Created: Tuesday, August 2, 1988 at 8:19 AM}
- { Notification.p}
- { Pascal Interface to the Macintosh Libraries}
- {}
- { Copyright Apple Computer, Inc. 1988}
- { All rights reserved}
- {}
-
-
- UNIT Notification;
- INTERFACE
-
- CONST
- nmType = 8;
-
-
- TYPE
-
- NMRec = RECORD
- qLink: QElemPtr; {next queue entry}
- qType: INTEGER; {queue type -- ORD(nmType) = 8}
- nmFlags: INTEGER; {reserved}
- nmPrivate: LONGINT; {reserved}
- nmReserved: INTEGER; {reserved}
- nmMark: INTEGER; {item to mark in Apple menu}
- nmSIcon: Handle; {handle to small icon}
- nmSound: Handle; {handle to sound record}
- nmStr: StringPtr; {string to appear in alert}
- nmResp: ProcPtr; {pointer to response routine}
- nmRefCon: LONGINT; {for application use}
- END;
-
-
-
- FUNCTION NMInstall (nmReqPtr: QElemPtr): OSErr;
- INLINE
- $205F, $A05E, $3E80;
- FUNCTION NMRemove (nmReqPtr: QElemPtr): OSErr;
- INLINE
- $205F, $A05F, $3E80;
-
-
- IMPLEMENTATION
-
- END.